-
41 binary tree
-
42 binary tree
English-Russian dictionary of computer science > binary tree
-
43 binary search tree
English-Russian dictionary of computer science > binary search tree
-
44 B-tree
English-Russian dictionary of computer abbreviations and terms > B-tree
-
45 BSP Tree
binary space partition - двоичное разделение пространствав программах трехмерного моделирования BSP-древо разделяет трехмерное пространство с помощью двухмерных панелей, что помогает ускорить процесс сортировки данных. Подобная технология также иногда используется с целью обнаружения возможных коллизий.English-Russian terms in computer graphics and 3D > BSP Tree
-
46 balanced tree
= B-tree IIдерево называется сбалансированным (или АВЛ-деревом - в честь его разработчиков G.M. Adelson-Velsky и Е.М. Landis), если для любой его вершины левое и правое поддеревья различаются по высоте не более чем на единицу. Хранение данных в виде сбалансированного дерева обеспечивает равнодоступность элементов данных.Syn:Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > balanced tree
-
47 generalized binary tree
= GBTдревовидная структура с одним корнем и двумя (левым и правым) поддеревьями, которые сами являются уменьшенными обобщёнными двоичными деревьями; применяется, например, для представления документов, для распределения (сортировки) данных в многомерных пространствах, для поискасм. тж. binary treeАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > generalized binary tree
-
48 optimal binary search tree
оптимальное двоичное дерево поиска
—
[ http://www.iks-media.ru/glossary/index.html?glossid=2400324]Тематики
- электросвязь, основные понятия
EN
Англо-русский словарь нормативно-технической терминологии > optimal binary search tree
-
49 B-tree
I
(balanced tree) сбалансированное [двоичное] дерево, В-дереводревовидная структура с корнем и вершинами, каждая из которых может иметь ровно две дочерние вершины, содержащие данные. В-деревья применяются при создании индексов БД (B-tree indexing).Syn:
II = balanced treeАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > B-tree
-
50 search tree
дерево поиска, дерево перебора (вариантов)Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > search tree
-
51 fault tree gate
-
52 balance of a node in a binary tree
Вычислительная техника: баланс узла в двоичном деревеУниверсальный англо-русский словарь > balance of a node in a binary tree
-
53 balanced binary tree
Вычислительная техника: сбалансированное бинарное дерево, сбалансированное двоичное дерево -
54 full binary tree
Программирование: полностью бинарное дерево -
55 optimal binary search tree
Вычислительная техника: оптимальное бинарное дерево поиска, оптимальное двоичное дерево поискаУниверсальный англо-русский словарь > optimal binary search tree
-
56 recursive binary-tree algorithms
Программирование: рекурсивные алгоритмы бинарных деревьевУниверсальный англо-русский словарь > recursive binary-tree algorithms
-
57 randomized binary tree
рандомизованное двоичное [рандомизованное бинарное] деревоEnglish-Russian electronics dictionary > randomized binary tree
-
58 edge-valued binary decision tree
рёберно-значное бинарное дерево решений, РЗБДР ( в моделировании логических схем)English-Russian dictionary of computer science and programming > edge-valued binary decision tree
-
59 ordered binary tree
Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > ordered binary tree
-
60 balance of a node in a binary tree
English-Russian information technology > balance of a node in a binary tree
См. также в других словарях:
Binary space partitioning — (BSP) is a method for recursively subdividing a space into convex sets by hyperplanes. This subdivision gives rise to a representation of the scene by means of a tree data structure known as a BSP tree.In simpler words, it is a method of breaking … Wikipedia
Binary Tree Sort — (im Deutschen auch Binarytreesort) ist ein einfacher, nicht stabiler Sortieralgorithmus. Inhaltsverzeichnis 1 Prinzip 2 Komplexität 3 Vor und Nachteile 4 Implementierungen … Deutsch Wikipedia
Binary — means composed of two parts or two pieces . It contrasts with Unary, Ternary, Quaternary, and so on.Binary may also refer to:* Binary option, also known as digital option OR all or nothing option * Binary numeral system, a representation for… … Wikipedia
Binary classification — is the task of classifying the members of a given set of objects into two groups on the basis of whether they have some property or not. Some typical binary classification tasks are * medical testing to determine if a patient has certain disease… … Wikipedia
Binary tree — Not to be confused with B tree. A simple binary tree of size 9 and height 3, with a root node whose value is 2. The above tree is unbalanced and not sorted. In computer science, a binary tree is a tree data structure in which each node has at… … Wikipedia
Binary search tree — In computer science, a binary search tree (BST) is a binary tree data structurewhich has the following properties: *each node (item in the tree) has a value; *a total order (linear order) is defined on these values; *the left subtree of a node… … Wikipedia
Tree (data structure) — A simple unordered tree; in this diagram, the node labeled 7 has two children, labeled 2 and 6, and one parent, labeled 2. The root node, at the top, has no parent. In computer science, a tree is a widely used data structure that emulates a… … Wikipedia
Binary heap — Example of a complete binary max heap Example of a complete binary min heap A binary … Wikipedia
Tree traversal — Graph and tree search algorithms Alpha beta pruning A* B* Beam Bellman–Ford algorithm Best first Bidirectional … Wikipedia
Binary decision diagram — In the field of computer science, a binary decision diagram (BDD) or branching program, like a negation normal form (NNF) or a propositional directed acyclic graph (PDAG), is a data structure that is used to represent a Boolean function. On a… … Wikipedia
Tree rotation — A tree rotation is an operation on a binary search tree that changes the structure without interfering with the order of the elements. A tree rotation moves one node up in the tree and one node down. They are used to change the shape of the tree … Wikipedia